home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 48 / PC Gamer IT CD 48 2-2.iso / Starsiege / tribesdemo.exe / Disk1 / data1.cab / Tribes_Demo / base / scripts.vol / tsDefaultMatProps.cs < prev    next >
Encoding:
Text File  |  1999-09-14  |  981 b   |  21 lines

  1. //  Set up the 3Space default properties...
  2. //
  3.  
  4. // setMaterialProperty (TYPE,     FRICTION, ELASTICITY);
  5.    setMaterialProperty (Default     ,  1.0      , 1.0 );
  6.    setMaterialProperty (Concrete    ,  1.3      , 0.8 );
  7.    setMaterialProperty (Carpet      ,  2.0      , 0.4 );
  8.    setMaterialProperty (Metal       ,  0.6      , 1.4 );
  9.    setMaterialProperty (Glass       ,  0.5      , 1.6 );
  10.    setMaterialProperty (Plastic     ,  1.0      , 1.0 );
  11.    setMaterialProperty (Wood        ,  1.3      , 0.75);
  12.    setMaterialProperty (Marble      ,  1.0      , 1.2 );
  13.    setMaterialProperty (Snow        ,  0.5      , 0.4 );
  14.    setMaterialProperty (Ice         ,  0.2      , 1.2 );
  15.    setMaterialProperty (Sand        ,  2.0      , 0.2 );
  16.    setMaterialProperty (Mud         ,  1.5      , 0.2 );
  17.    setMaterialProperty (Stone       ,  1.0      , 1.3 );
  18.    setMaterialProperty (SoftEarth   ,  1.4      , 0.6 );
  19.    setMaterialProperty (PackedEarth ,  1.0      , 0.9 );
  20.  
  21.